{% extends 'base.html' %} {% block body %} {% for message in messages %} {% endfor %}

All Bookings

Total Revenue: ₹{{ income }}
{% for b in all_booking %} {% endfor %}
Name of Booking Mobile Number Start Date & Time End Date & Time Total Amount (₹)
{{ b.name }} {{ b.phone }} {{ b.start_time }} {{ b.end_time }} ₹{{ b.total }}
{% if not all_booking %}
No bookings found yet.
{% endif %}
{% endblock body %}